home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / ABUSESRC.ZIP / AbuseSrc / imlib / include / std.h < prev    next >
C/C++ Source or Header  |  1996-04-11  |  335b  |  21 lines

  1. /* STD.H - My own standard header file...
  2.  */
  3.  
  4. #define LOCAL 
  5. #define IMPORT //extern
  6.  
  7. #define FAST register
  8. #include "system.h"
  9.  
  10. typedef short WORD;
  11. typedef unsigned short UWORD;
  12. typedef char TEXT;
  13. typedef unsigned char UTINY;
  14. #ifndef LONG
  15. typedef long LONG;
  16. #endif
  17. typedef unsigned long ULONG;
  18. typedef int INT;
  19.  
  20.  
  21.